home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 05.zip / BS1 part 5 / SASC_6.0_Disk_4.adf / Compiler_Headers / Include / libraries / mathffp.h < prev    next >
C/C++ Source or Header  |  1992-07-30  |  821b  |  36 lines

  1. #ifndef    LIBRARIES_MATHFFP_H
  2. #define    LIBRARIES_MATHFFP_H 1
  3. /*
  4. **    $Filename: libraries/mathffp.h $
  5. **    $Release: 2.04 Includes, V37.4 $
  6. **    $Revision: 36.2 $
  7. **    $Date: 90/05/01 $
  8. **
  9. **    general floating point declarations
  10. **
  11. **    (C) Copyright 1985-1991 Commodore-Amiga, Inc.
  12. **        All Rights Reserved
  13. */
  14.  
  15. #ifndef PI
  16. #define PI      ((float) 3.141592653589793)
  17. #endif
  18. #define TWO_PI      (((float) 2) * PI)
  19. #define PI2      (PI / ((float) 2))
  20. #define PI4      (PI / ((float) 4))
  21. #ifndef E
  22. #define E      ((float) 2.718281828459045)
  23. #endif
  24. #define LOG10      ((float) 2.302585092994046)
  25.  
  26. #define FPTEN      ((float) 10.0)
  27. #define FPONE      ((float) 1.0)
  28. #define FPHALF      ((float) 0.5)
  29. #define FPZERO      ((float) 0.0)
  30.  
  31. #define trunc(x)  ((int) (x))
  32. #define round(x)  ((int) ((x) + 0.5))
  33. #define itof(i)   ((float) (i))
  34.  
  35. #endif    /* LIBRARIES_MATHFFP_H */
  36.